home *** CD-ROM | disk | FTP | other *** search
- {===============================================}
- { Test program for I/O Redirection unit (REDIR) }
- { Richard Casey }
- { CIS 72247,151 }
- {===============================================}
-
- {===========================================================================
-
- This sample program uses the ExecRedirect procedure to sort one file
- (SAMPLE.DAT) into another (SAMPLE.SRT) using the DOS SORT filter.
-
- ===========================================================================}
-
- {$M 8192,0,0}
-
- program RedirTst;
-
- uses Dos,Redir;
-
- var
- Status : word;
-
- begin
-
- ExecRedirect('sort','sample.dat','sample.srt',Status);
-
- end.
-